Skip to main content

解决 Rust Tauri 1.0 构建时下载 WiX失败

Windows 的安装器 WiX 的下载失败上:

image

外层的代理对命令行又不生效,最好的方式是把这个 WiX 包在浏览器下载完,然后放在 Tauri 需要的地方,让它直接使用,避免再在命令行里下载。

Tauri 的判断代码在这里:https://github.com/tauri-apps/tauri/blob/dev/tooling/bundler/src/bundle/windows/msi.rs#L29

/// Runs all of the commands to build the MSI installer.
/// Returns a vector of PathBuf that shows where the MSI was created.
pub fn bundle_project(settings: &Settings, updater: bool) -> crate::Result<Vec<PathBuf>> {
let mut wix_path = dirs_next::cache_dir().unwrap();
wix_path.push("tauri/WixTools");

if !wix_path.exists() {
wix::get_and_extract_wix(&wix_path)?;
} else if WIX_REQUIRED_FILES
.iter()
.any(|p| !wix_path.join(p).exists())
{
warn!("WixTools directory is missing some files. Recreating it.");
std::fs::remove_dir_all(&wix_path)?;
wix::get_and_extract_wix(&wix_path)?;
}

wix::build_wix_app_installer(settings, &wix_path, updater)
}

dirs_next::cache_dir() 的结果如下:

PlatformValueExample
Linux$XDG_CACHE_HOME or $HOME/.cache/home/alice/.cache
macOS$HOME/Library/Caches/Users/Alice/Library/Caches
Windows{FOLDERID_LocalAppData}C:\Users\Alice\AppData\Local

所以直接把 Wix 下载完后,在 C:\Users\xxxxxxxx\AppData\Loca 中,创建 tauri/WixTools 文件夹,然后把内容解压到里面就可以了。

正常构建完成:

image